home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19951130-19960209 / 000199_news@columbia.edu _Fri Dec 29 13:48:42 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.3/8.7.3) with ESMTP id NAA19700 for <kermit.misc@watsun>; Fri, 29 Dec 1995 13:48:42 -0500 (EST)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.3/8.7.3) id NAA05197 for kermit.misc@watsun; Fri, 29 Dec 1995 13:48:40 -0500 (EST)
  4. Path: news.columbia.edu!panix!bloom-beacon.mit.edu!newsfeed.internetmci.com!news.sprintlink.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  5. From: jrd@cc.usu.edu (Joe Doupnik)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: manipulation of input buffer
  8. Message-ID: <1995Dec29.100610.70151@cc.usu.edu>
  9. Date: 29 Dec 95 10:06:10 MDT
  10. References: <wpfulmorDKCtpz.9Hz@netcom.com>
  11. Organization: Utah State University
  12. Lines: 19
  13.  
  14. In article <wpfulmorDKCtpz.9Hz@netcom.com>, wpfulmor@netcom.com (william p fulmor) writes:
  15. > re:MSkermit 3.14 P 9
  16. > I need to capture many characters (~~2k) using INPUT n text, and then 
  17. > extract and act on the contents.  The INPUT command yields a STATUS of 
  18. > SUCCESS, implying that the unique characters at the end of the 
  19. > transmission have been received, but all attempts to manipulate, extract, 
  20. > or even view input buffer contents beyond the first cr fail.  echo 
  21. > \v(input) displays only the fist line of text.  \fsubstr, \flength etc 
  22. > etc work on only the first line.
  23. > I do not see any limitations specified in _Using_MSK_ or *.upd, so I 
  24. > conclude the problem must be due to operator error.  What am I doing 
  25. > wrong?  Thanks.
  26. -------------
  27.     It's not supported is the proper answer. I would recommend you
  28. deal with small pieces of the incoming stream by a succsssion of INPUT
  29. statements, and retain each line of interest to a variable as you go.
  30.     Joe D.